home *** CD-ROM | disk | FTP | other *** search
/ Aminet 15 / Aminet 15 - Nov 1996.iso / Aminet / dev / basic / ace24dist.lha / ace24.lha / include / prefs / palette.h < prev    next >
C/C++ Source or Header  |  1996-09-10  |  1KB  |  61 lines

  1. #ifndef PREFS_PALETTE_H
  2. #define PREFS_PALETTE_H 1
  3. /*
  4. ** palette.h for ACE Basic
  5. **
  6. ** Note: Translated to ACE by ConvertC2ACE
  7. **       @ MapMeadow Software, Nils Sjoholm
  8. **
  9. **
  10. ** Date: 09/03/95
  11. **
  12. **
  13. */
  14.  
  15. /*
  16. ** This are the StructPointer defines for palette.h
  17. */
  18. #ifndef PalettePrefsPtr
  19. #define PalettePrefsPtr ADDRESS
  20. #endif
  21. /*
  22. ** End of StructPointer defines for palette.h
  23. */
  24.  
  25.  
  26. /*****************************************************************************/
  27.  
  28.  
  29. #ifndef EXEC_TYPES_H
  30. #include <exec/types.h>
  31. #endif
  32.  
  33. #ifndef LIBRARIES_IFFPARSE_H
  34. #include <libraries/iffparse.h>
  35. #endif
  36.  
  37. #ifndef INTUITION_INTUITION_H
  38. #include <intuition/intuition.h>
  39. #endif
  40.  
  41.  
  42. /*****************************************************************************/
  43.  
  44.  
  45. #define ID_PALT 1346456660 
  46.  
  47.  
  48. STRUCT PalettePrefs
  49.  
  50.     STRING pap_Reserved SIZE 16  /* 4*SIZEOF(LONGINT) */    /* SYSTEM reserved        */
  51.     STRING pap_4ColorPens SIZE 64  /* 32*SIZEOF(SHORTINT) */
  52.     STRING pap_8ColorPens SIZE 64  /* 32*SIZEOF(SHORTINT) */
  53.     STRING pap_Colors SIZE 256                /* Used AS full 16-bit RGB values */
  54. END STRUCT 
  55.  
  56.  
  57. /*****************************************************************************/
  58.  
  59.  
  60. #endif /* PREFS_PALETTE_H */
  61.